home *** CD-ROM | disk | FTP | other *** search
/ Amiga Games: Greatest Hits 1996 / Amiga Games: Greatest Hits 1996.iso / rexx / convertfile.rx < prev    next >
Text File  |  1996-06-18  |  760b  |  40 lines

  1. /*
  2.    $VER: ConvertFile.rx V5.41 (15.2.96)
  3.    © 1993-96 by Andreas R. Kleinert
  4.  
  5.    This script demonstrates loading, saving (converting) and
  6.    displaying files by using SuperView's ARexxPort.
  7.  
  8. */
  9.  
  10. address command
  11.  
  12. SuperView "-INSTALL_APPMENU=FALSE -INSTALL_APPICON=FALSE"
  13.  
  14. say ""
  15. say "ARexx : SuperView has been started : Waiting a moment..."
  16.  
  17. wait 3
  18.  
  19. say "ARexx : Loading a GIF Graphics via the LOAD command"
  20. address 'SuperView.rx' "LOAD=/Bonus/PS"
  21.  
  22. say "ARexx : Saving Graphics as Windows BMP"
  23.  
  24. address 'SuperView.rx' "SAVE_TYPE=BMP (Win,OS/2)"
  25. address 'SuperView.rx' "SAVE=PS.bmp"
  26.  
  27. wait 3
  28.  
  29. say "ARexx : Load this BMP Gfx now for control"
  30.  
  31. address 'SuperView.rx' "SHOW=PS.bmp"
  32.  
  33. say "ARexx : O.K. : Let's quit !"
  34.  
  35. Wait 2
  36.  
  37. address 'SuperView.rx' "QUIT"
  38.  
  39. exit
  40.